crypto/internal/nistec.P224Point.y (field)

23 uses

	crypto/internal/nistec (current package)
		p224.go#L24: 	x, y, z *fiat.P224Element
		p224.go#L31: 		y: new(fiat.P224Element).One(),
		p224.go#L39: 	p.y.SetBytes([]byte{0xbd, 0x37, 0x63, 0x88, 0xb5, 0xf7, 0x23, 0xfb, 0x4c, 0x22, 0xdf, 0xe6, 0xcd, 0x43, 0x75, 0xa0, 0x5a, 0x7, 0x47, 0x64, 0x44, 0xd5, 0x81, 0x99, 0x85, 0x0, 0x7e, 0x34})
		p224.go#L47: 	p.y.Set(q.y)
		p224.go#L76: 		p.y.Set(y)
		p224.go#L101: 		p.y.Set(y)
		p224.go#L159: 	y := new(fiat.P224Element).Mul(p.y, zinv)
		p224.go#L204: 	y := new(fiat.P224Element).Mul(p.y, zinv)
		p224.go#L220: 	t1 := new(fiat.P224Element).Mul(p1.y, p2.y)  // t1 := Y1 * Y2
		p224.go#L222: 	t3 := new(fiat.P224Element).Add(p1.x, p1.y)  // t3 := X1 + Y1
		p224.go#L223: 	t4 := new(fiat.P224Element).Add(p2.x, p2.y)  // t4 := X2 + Y2
		p224.go#L227: 	t4.Add(p1.y, p1.z)                           // t4 := Y1 + Z1
		p224.go#L228: 	x3 := new(fiat.P224Element).Add(p2.y, p2.z)  // X3 := Y2 + Z2
		p224.go#L264: 	q.y.Set(y3)
		p224.go#L275: 	t1 := new(fiat.P224Element).Square(p.y)      // t1 := Y ^ 2
		p224.go#L277: 	t3 := new(fiat.P224Element).Mul(p.x, p.y)    // t3 := X * Y
		p224.go#L301: 	t0.Mul(p.y, p.z)                             // t0 := Y * Z
		p224.go#L310: 	q.y.Set(y3)
		p224.go#L318: 	q.y.Select(p1.y, p2.y, cond)